Psst: Open the JavaScript Console and try to play around with these functions:
bubbleSort([9,0,7,3,4,6,8,2,1,5]) // should return
[0,1,2,3,4,5,5,6,7,8,9]
selectionSort([9,0,7,3,4,6,8,2,1,5]) // should return
[0,1,2,3,4,5,5,6,7,8,9]
insertionSort([9,0,7,3,4,6,8,2,1,5]) // should return
[0,1,2,3,4,5,5,6,7,8,9]
mergeSort([9,0,7,3,4,6,8,2,1,5]) // should return
[0,1,2,3,4,5,5,6,7,8,9]
quickSort([9,0,7,3,4,6,8,2,1,5]) // should return
[0,1,2,3,4,5,5,6,7,8,9]
radixSort([3221,1,10,9680,577,9420,7,5622,4793,2030,3138,82,2599,743,4127])
// should return
[1,7,10,82,577,743,2030,2599,3138,3221,4127,4793,5622,9420,9680]